From 7a191adcfb36836c7ee472e2daa50bdad365e484 Mon Sep 17 00:00:00 2001 From: George Dunlap Date: Thu, 23 Feb 2012 10:16:10 +0000 Subject: [PATCH] scheduler: Print ratelimit in scheduler debug key Signed-off-by: George Dunlap Committed-by: Keir Fraser --- xen/common/sched_credit.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/xen/common/sched_credit.c b/xen/common/sched_credit.c index 015ea21a70..2579a226a0 100644 --- a/xen/common/sched_credit.c +++ b/xen/common/sched_credit.c @@ -1504,6 +1504,7 @@ csched_dump(const struct scheduler *ops) "\trunq_sort = %u\n" "\tdefault-weight = %d\n" "\ttslice = %dms\n" + "\tratelimit = %dus\n" "\tcredits per msec = %d\n" "\tticks per tslice = %d\n" "\tmigration delay = %uus\n", @@ -1515,6 +1516,7 @@ csched_dump(const struct scheduler *ops) prv->runq_sort, CSCHED_DEFAULT_WEIGHT, prv->tslice_ms, + prv->ratelimit_us, CSCHED_CREDITS_PER_MSEC, prv->ticks_per_tslice, vcpu_migration_delay); -- 2.30.2